Computes the Cholesky factorization of a symmetric, positive definite matrix.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=real64), | intent(in), | dimension(:,:) | :: | a |
The N-by-N matrix to factor. |
|
| logical, | intent(in), | optional | :: | upper |
An optional input that, if specified, provides control over whether the factorization is computed as (set to true), or as (set to false). The default is true such that . |
The factored matrix.
Computes the Cholesky factorization of a symmetric, positive definite matrix.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| complex(kind=real64), | intent(in), | dimension(:,:) | :: | a |
The N-by-N matrix to factor. |
|
| logical, | intent(in), | optional | :: | upper |
An optional input that, if specified, provides control over whether the factorization is computed as (set to true), or as (set to false). The default is true such that . |
The factored matrix.